home *** CD-ROM | disk | FTP | other *** search
/ Mac Format 1994 October / Macformat17.cdr / Shareware City / Sound / juno-librarian-108 / JUNO Librarian 1.0.8 / Sample Scripts / 46 Copy All param to New Window < prev    next >
Text File  |  1994-07-11  |  319b  |  13 lines

  1. tell application "JUNO Librarian"
  2.     activate -- if needed
  3.     open file "Sample"
  4.     New Window 0
  5.     repeat with i from 0 to 22
  6.         set x to Parameter i of Window "Sample"
  7.         set Parameter i of Window 1 to x
  8.     end repeat
  9.     set x to Text 1 of Window "Sample"
  10.     set Text 1 of Window 1 to x
  11.     save Window 1 in file "Sample Copy"
  12. end tell
  13.